web3.js web3.utils.hexToAscii
web3.utils.hexToAscii(hex)
web3.utils.toAscii(hex) // ALIAS, deprecated
渡された16進数形式の文字列に対応する ASCII 文字列を返します。
パラメータ
1. hex - String
戻り値
String
サンプル
code:example.js
web3.utils.hexToAscii('0x4920686176652031303021');
"I have 100!"
参考